[Notes] Git notes Posted on 2019-04-28 | In CS Symbols count in article: 512 | Reading time ≈ 1 mins. Create a remote repository and push123456789101112131415161718git initgit add .git commit -am 'init'git config --local user.name usernamegit config --local user.email emailgit config --list //check configgit config --local core.ignorecase false // turn case sensitivity off// use http to connectcurl -u username https://api.github.com/user/repos -d '{"name":"RepoName"}'// updategit remote add origin git@github.com:username/RepoName.git git push origin master